GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class > SetArray Method : SetArray(Int32,Int32,Object[,],Boolean) Method |
'Declaration Public Overloads Sub SetArray( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal value(,) As Object, _ ByVal formula As Boolean _ )
object[,] arr; gcSpreadSheet1.ActiveSheet.SetArray(1, 0, new String[,] { { "One", "Two" } }); gcSpreadSheet1.ActiveSheet.SetArray(2, 1, new String[,] { { "Three", "Four" } }, false); arr = gcSpreadSheet1.ActiveSheet.GetArray(1, 0, 3, 2); gcSpreadSheet1.ActiveSheet.Cells[3, 3].Text = "The value of the first element in the array is " + arr.GetValue(0, 0).ToString();
Dim arr(,) As Object GcSpreadSheet1.ActiveSheet.SetArray(1, 0, New String(,) {{"One", "Two"}}) GcSpreadSheet1.ActiveSheet.SetArray(2, 1, New String(,) {{"Three", "Four"}}, False) arr = GcSpreadSheet1.ActiveSheet.GetArray(1, 0, 3, 2) GcSpreadSheet1.ActiveSheet.Cells(3, 3).Text = "The value of the first element in the array is " & arr.GetValue(0, 0).ToString()
Target Platforms: Windows Server 2012, Windows RT